home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus Leser 15 / Amiga Plus Leser CD 15.iso / Tools / Development / mmu / Mu680x0Libs / ReadMe < prev    next >
Text File  |  2002-03-12  |  78KB  |  1,672 lines

  1. The mmu.library project © 1998-2002 the mmu.library development group, THOR
  2. -----------------------------------------------------------------------------
  3.  
  4. Release 43.6
  5. --------------
  6.     - mmu.library: Added another safety check for the DMA property
  7.       list.
  8.     - MuMapRom: The reset-and-stay resident mechanism of MuMapRom
  9.       makes now use of the ColdCapture exec vector and a nice little
  10.       extra hack.
  11.     - MuMapRom: Adds now a 16MB "safety zone" around memory areas to
  12.       keep some wierd memory tests working.
  13.     - memory.library: Changed the memory administration functions a
  14.       bit by adding a "ranger pointer". 
  15.  
  16. Release 43.5.1
  17. --------------
  18.     - 680x0.library: Handled the low-memory area of MuMove4K unproperly
  19.       and therefore broke MuFastZero. Fixed.
  20.     - MuMapRom: Did not work at all if the "ROMINFAST" option was not
  21.       present at the command line. Should be much better now.
  22.     - memory.library: The library does no longer allow the attachment of
  23.       an address space to the global MMU context.
  24.     - memory.library: The library does no longer support attachments of
  25.       address spaces to supervisor contexts. This wouldn't have worked
  26.       anyhow.
  27.     - MuGuardianAngel: AllocAbs() was still broken and returned the wrong
  28.       register.
  29.  
  30. Release 43.5
  31. --------------
  32.     - CPU libraries: All CPU libraries reset the VBR now before restarting
  33.       the ROM.
  34.     - mmu.library: Fixed a possible race condition of the 68060 exception
  35.       handler. The 68060 can report a misaligned access even though the
  36.       fault address and the access fault size do not indicate that a page
  37.       boundary is crossed.
  38.     - Included a new test tool: "SwapTest" will check whether the 68060 or
  39.       68040 library support some race conditions on swapping correctly.
  40.       Note that this test will fail for most third-party libraries.
  41.     - Included MuForce 40.30 (Aminet release) that is required for the
  42.       latest MuGA. It won't work with former releases.
  43.  
  44. Release 43.4.2    (Internal release only)
  45. --------------
  46.     - memory.library:
  47.         - fixed possible memory leak of the swap hooks. They should
  48.           have closed files/devices on VMPACK_EXIT, not VMPACK_CLOSE.
  49.     - Updated the documentation of the mmu.library for the new functions.
  50.     - Included a first version for the memory.library documentation.
  51.  
  52.  
  53. Release 43.4.1    (Internal release only)
  54. --------------
  55.     - mmu.library:    Forgot to include the 43.4 of the mmu.library in the
  56.       last distribution.
  57.     - memory.library:
  58.         - fixed broken handling of private swap hooks for 
  59.           virtual memory pools.
  60.         - fixed broken handling of "Retry" of error requesters.
  61.         - added more sophisticated error handling for out of memory
  62.           and swap alerts. The code will no longer try to repeat for
  63.           obvious errors.
  64.     - mmap.c:
  65.         - fixed missing result code on error.
  66.  
  67.  
  68. Release 43.4    (Internal release only)
  69. --------------
  70.     - mmu.library: The 68040 race condition fix of the 43.3 wasn't as
  71.       good as I though. Reworked this mess again. It will now be able
  72.       to handle the wierd condition where a write-back is busy and
  73.       detected from a word-sized movem, even though it comes from a
  74.       different instruction. Yuck!
  75.     - mmu.library: Added workarounds for the V37 ObtainSemaphoreShared()
  76.       bug.
  77.     - mmu.library: Made all context locks shared as far as possible.
  78.     - mmu.library: Fixed a possible register trash for the shared context
  79.       locks.
  80.     - memory.library: Worked again a bit on the memory allocation routines
  81.     - Examples: vmem.c and mmap.c are now ready for release. The examples
  82.       look now like they are supposed to.
  83.     - Updated the mmu.library autodocs a bit.
  84.     - memory.library:
  85.         - added another cache at the swap hook side of the library.
  86.           This should hopefully help to improve the performance a
  87.           bit as it tries to bundle I/O accesses.
  88.         - the library limits now the virtual memory range of the
  89.           address space to the user defined limit before asking the
  90.           hook for the maximal size. This avoids unnecessary disk-
  91.           trashing for the file hook.
  92.         - the library should behaive much better now for low memory
  93.           situations and errors on the swap hook. The hook remains
  94.           responsive in these situations. 
  95.         - added a (localizable) error requester for failures of the
  96.           three built-in swap hooks.
  97.         - All file I/O goes now over packets rather the dos.library.
  98.           This would avoid trouble in case the dos.library gets
  99.           patched over.
  100.  
  101.  
  102. Release 43.3    (Internal release only)
  103. --------------
  104.     
  105.     - mmu.library: Fixed a possible race condition of the Motorola
  106.       "Diva", the 68040. Unlike what the documentation suggests, the
  107.       CM bit is not directly related to access errors of movem's. )-:
  108.     - memory.library:
  109.         - Fixed a bug in the final page disposal routine that
  110.           could have caused MuGA hits. Fixed.
  111.         - Fixed a bug in the swap daemon that could have tried
  112.           to deliver a motor tick to the swap hook even though
  113.           the hook has been released already.
  114.         - Reworked the internal memory handling. The memory
  115.           pools come now with scratch lists to speed up the
  116.           allocation of tiny chunks, and to avoid unnecessary
  117.           virtual memory accesses. Further, the library uses
  118.           now its own set of pooled allocation/deallocation
  119.           routines. First of all, this avoids clashes with
  120.           whatever patch might sit there and doesn't know
  121.           how to handle virtual memory correctly, especially
  122.           the rather harsh Forbid()/Disable() rules. Second,
  123.           the new pooled allocation tries a combination of
  124.           a "best fit" plus "buddy chunk" allocation that is
  125.           less naive than the native exec allocation. 
  126.           (but still naive enough to allow improvements...)
  127.         - Fixed bugs in the computation of the swap pool size
  128.           that happened mainly on machines with Z2 memory
  129.           only.
  130.         - Added documentation for the PoolVSize() function
  131.           that was forgotten for the 0.0 release last time.
  132.         - Added a tag to restrict the size of the virtual
  133.           memory pool created.
  134.     - MuGA: Fixed Deallocate()/Allocate() patches that forgot to
  135.       align memory correctly.
  136.     - MuRedox: Aparently, the new version never made it to Aminet,
  137.       even though it was uploaded. It provides one new option,
  138.       SHOWPATCHEDINSTRS, which shows the list of instructions it
  139.       was able to replace by its own set of stub-routines.
  140.  
  141. If the vmem example program shows an "Allocation Failed" report, do not worry.
  142. This is just because the memory pool run out of data. This is likely to happen
  143. due to the way how this stress-test works.
  144.  
  145. The memory.library got tested now on the 030,040 and 060.
  146.  
  147.  
  148. Release 43.2    (Internal release only)
  149. --------------
  150.     - mmu.library: Added support for the mmu.resource. This is a
  151.       system resource that defines the interface to the true hard-
  152.       ware MMU. The library will make use of this resource whenever
  153.       it is present, and will fall back to its build-in routines
  154.       otherwise. The purpose of the resource is to allow emulation
  155.       of the MC68K MMU on non-native CPUs (i.e. x86) without the
  156.       need to re-write the entire library from scratch.
  157.     - mmu.library: "shared" pages are finally officially supported.
  158.       Note that most of this stuff worked already in V42.
  159.     - mmu.library: Fixed a bug in PhysicalLocation() that did not
  160.       return the true physical location in case the memory was
  161.       marked as MAPP_SHARED.
  162.     - mmu.library: Added GetPageUsedModified() to parse the
  163.       Used/Modified flags more easely than with Get/SetPage-
  164.       Properties(). This is still to be documented and mainly for
  165.       the purpose of the memory.library.
  166.     - MuGA: Fixed a register trash that broke AllocAbs() and related
  167.       calls.
  168.     - NEWS FLASH! Finally, the first release of the memory.library
  169.       is available. The purpose of this release is to supply
  170.       virtual memory to the AmigaOs in a flexible and compatible
  171.       way. There is not yet much documentation, but there are
  172.       includes and autodocs.
  173.  
  174. Testing:
  175. --------
  176.     - After a long pause, it's testing time again! The current
  177.       test suite contains two example programs, source code included,
  178.       that demonstrate the power and the flexibility of the library.
  179.       Please experiment a bit with these two programs!
  180.  
  181.     - mmap: Expects a file name as input. The corresponding file should
  182.       be a simple ASCII text file whose contents should be printed onto 
  183.       the consolse. This doesn't sound spectaculous at all, but the
  184.       way *how* this is done is a bit "unusual". The program mirrors
  185.       the complete file in memory without having to load it completely,
  186.       and then uses only memory/pointer arithmetic to print the contents
  187.       of the file. 
  188.  
  189.     - vmem: Demonstrates "virtual memory management". Similar to the
  190.       "MemoryMess" test program of "PoolMem", this program just allocates
  191.       and releases virtual memory very often as some kind of a "stress 
  192.       test" for the memory.library. This will be *slow* due to a lot
  193.       of swapping operations.
  194.       The program expects either a file name as input that will be used
  195.       as a swap file, or the name of a dos device, to be used as a 
  196.       swap partition.
  197.       *** BE WARNED! *** 
  198.       In case you use the swap partition method, 
  199.       *****************************************************
  200.       *** ALL CONTENTS OF THIS PARTITION WILL BE ERASED *** 
  201.       *****************************************************
  202.  
  203.       Please test this program with both a swap file (64MB free space
  204.       will be required), and a swap partition. Note that due to the
  205.       nature of the FFS, swapping to a swap file might be very slow;
  206.       other filing systems might perform better.
  207.  
  208.          *** DO NOT YET WRITE PROGRAMS FROM THESE EXAMPLES ***
  209.  
  210.       The presented examples are not yet optimal in the sense that
  211.       you would be encouraged to build a private MMUContext, unlike
  212.       the example programs. This will be fixed in a future release.
  213.  
  214. Release 42.11
  215. --------------
  216.     - MuForce, MuGuardianAngel: The documentation stated that you
  217.       must not exit MuForce as long as MuGuardianAngel is running.
  218.       Since some folks do not want to read documentation, this
  219.       behaivour is now enforced. (pun intended)
  220.     - mmu.library: The MMU memory type tag was ignored for the
  221.       spare pages for MAPP_BLANK, fixed.
  222.     - MuFastZero: Returns now a separate error code in case FASTEXEC
  223.       has been specified but exec is already in fast memory.
  224.     - MuMove4K: PREPAREEMUL did not work correctly on boards with 
  225.       true autoconfig memory due to a missing MEMF_CHIP. Fixed.
  226.     - MuGuardianAngel: Added the new critical PROTECTPOST option
  227.       to enhance out-of-bounds error detection.
  228.     - mmu.library: Added some private tags to GetContextData(), not
  229.       to be documented.
  230.     - MuFastRom: Got modified to work with even already remapped
  231.       ROM images.
  232.     - fpsp.resource (within the 68040 and 68060.library): Fixed the
  233.       generation of the "store" flag that should have been set in
  234.       exception conditions.
  235.     - FastIEEE: Development passed over to Gunther Nikl; included
  236.       a new 40.2 that fixes some bugs of the 40.1 and works around
  237.       some old bugs of the V37 math libraries. Thanks, Gunther!
  238.     - mathieeexxxx.library: The V45 math libraries support now the
  239.       fpsp.resource and hence faster mathematics. They are part of
  240.       Os 3.9 and not included in this distribution.
  241.     - MuMapRom: This is a new MuTool that allows booting from a
  242.       different kickstart release if the board is well-behaived.
  243.       Be warned, this is a hack.
  244.     - MuRedox: Another new MuTool that patches on-the-fly unsupported
  245.       040 and 060 instructions similar to the Oxypatcher or the
  246.       CyberPatcher. Be warned, this is a hack.
  247.     - Included FPSPSnoop for debugging purposes of MuRedox.
  248.     - Included LoadModule as "base tool" for MuProtectModules.
  249.  
  250. Release 42.9.1
  251. ---------------
  252.     - MuForce: Marked the ROM area as WRITEPROTECTED rather than
  253.       ROM on exit, causing GURUs on erraneous writes into that area.
  254.  
  255. Release 42.9
  256. ---------------
  257.     - Due to a bug in the MMU-Configuration scan, Imprecise and
  258.       NonSerial were mutually exclusive within the MMU-Configuration
  259.       file. Result could have been less-optimal MMU setups on 68040
  260.       boards that could not have caused any instabilities, though.
  261.       (Hence, this is mainly a cosmetical fix...)
  262.     - MuProtectModules was updated to support to the LoadProtectModules
  263.       release 40.5 and beyond.
  264.     - FixP5SCSI: Added a check for the 1230scsi.device.
  265.  
  266. Release 42.8.1
  267. ---------------
  268.     - MuGuardianAngel: Fixed a bug in the page access handler that
  269.       could have invalidated pages under some alignment race 
  270.       conditions, thanks Stephen.
  271.     - 68060.library and 68040.library: Added explicit masking within 
  272.       CacheClearE() which might work around a potential firmware bug 
  273.       of the 68060 or of DMA driver firmware.
  274.     - 68060.library: Fixed a bug in the "unsupported FPU data type"
  275.       handler due to a register trash. Urgh! Thanks for the bug report,
  276.       Luca.
  277.  
  278. Release 42.8
  279. ---------------
  280.     - mmu.library: Fixed a fatal bug in the RebuildTree(s) calls that
  281.       trashed the DMA relevant MMU table mapping in case the MMU 
  282.       context remained untouched and RebuildTree(s) could have exited
  283.       immediately.
  284.     - MuFastChip: Added a check whether the program is really required,
  285.       and prints a warning in case it is not.
  286.     - MuFastZero: Tries now to detect the lower limit of the chip 
  287.       memory automatically and will remap all memory below this boundary.
  288.       Should help when using the ShapeShifter and "MuMove4K".
  289.     - Documentation: exd_Internal was at the wrong place in the C 
  290.       header files. (Urgh!) It was always correct in the .i files, 
  291.       though.
  292.  
  293. Release 42.6
  294. ---------------
  295.     - mmu.library: Fixed some very rare problems on access errors of
  296.       pre-decrement movems for both the 68040 and the 68060.
  297.     - MuMove4k: The PREPAREEMUL (without the A1200 switch) option was
  298.       broken and might have caused crashes on a reboot. MuMove4K 
  299.       installs now itself into MEMF_KICK and no longer MEMF_CHIP. If
  300.       this causes problems on your machine, try the INCHIPMEM option.
  301.     - MuFastZero: If ExecBase was remapped by means of the FastExec
  302.       option, installation of reset-proof programs behind MuFastZero
  303.       failed since these programs installed only into the non-resident
  304.       copy of ExecBase. MuFastZero includes now a patch to SumKickData()
  305.       which will avoid this problems.
  306.     - MuForce: MuForce installed an interrupt handler directly into
  307.       the autovector base which is not very system friendly. Fixed by
  308.       using the official interrupt handler. If MuForce crashes on exit,
  309.       disable your favourite "SaferPatches" clone and either avoid these
  310.       tools, or get "TRSaferPatches.lha" from Aminet.
  311.     - MuGuardianAngel: Supports now some not yet available memory pool
  312.       enhancement patches.
  313.     - P5Init: Fixed a potentially dangerous unaligned CopyMemQuick().
  314.     - A new MuLib based, tested and VMM aware 68060.library is now
  315.       available.
  316.     - Included a new tool, MuProtectModules. This will write-protect
  317.       resident modules loaded by "LoadModule". (See Aminet).
  318.     - MuEVD: Forgot an ATC table flush, result might have been partial
  319.       display gliches caused by erraneously dropped refresh cycles.
  320.     - FPU: Forgot to include this FPU control program. Fixed.
  321.     - 680x0.library: Did not identify a 68060 FPU correctly if used
  322.       to bootstrap the 68060.library by the patched SetPatch.
  323.     - 68060.library: Fixed a fatal bug in the fpsp core that could cause
  324.       crashes and hangs on execution of fscc instructions.
  325.     - 68060.library: Included a replacement function for CacheClearU()
  326.       since a 68060 version might not be available.
  327.     - 68040/68060.library: Included a new and improved CacheClearE()
  328.       function. Especially gvpscsi and omnscsi owners might profit
  329.       from this improvement.
  330.     - Included PatchWork 0.15 from Richard Körber. Thanks, Richard!
  331.     - Updated the documentation and the include files.
  332.     - Added the IGNORE keyword to MuFastZero.
  333.  
  334. Release 42.4.1
  335. ---------------
  336.     - CPU libraries: The FPU test was super-critical and failed if the
  337.       FPU could not complete a float->integer conversion before 
  338.       starting a concurrent frestore.
  339.     - CPU libraries: The GetMsg() replacement is now more conservative
  340.       and will return NULL in case the message list of the port is not
  341.       properly initialized or the linkage field of a node is (incorrectly) 
  342.       NULL. Thanks Ian!
  343.  
  344. Release 42.4
  345. ---------------
  346.     - Fixed several flaws of the 68060.library: Several cache flushes
  347.       have been missing, FPU setup has been fixed as well.
  348.     - Fixed the installer script: FixCybAccess must be "run" in 
  349.       background.
  350.     - MuGuardianAngel did not record the return PC correctly for the
  351.       pooled memory allocations.
  352.     - The mmu.library crashed on a plain 68000. Fixed.
  353.  
  354. Release 42.3
  355. ---------------
  356.     - Included an alpha release of a new 68060.library which provides a
  357.       fpsp.resource and is virtual memory aware. This alpha release can
  358.       be found in the LIBS/alpha directory.
  359.       Thanks goes to Stephen Brookes and Etienne Vogt for performing
  360.       some tests. Note though that I do not own a 68060 and could not
  361.       test this library for correctness.
  362.  
  363.     - Included a MMU driven ShapeShifter video driver, MuEVD. (new)
  364.     - MuGuardianAngel: Does no longer call RawIOInit() and hence will
  365.       no longer conflict with programs using the serial port even in
  366.       cases MuGuardianAngel never required the port in first place.
  367.     - MuForce: Does no longer call RawIOInit() but fully relies on the
  368.       Os and/or the user to initialize the serial port correctly, in the
  369.       same way the old Enforcer did. This means that MuForce will now
  370.       safely cooperate with software that requires the serial port in
  371.       cases MuForce output goes to the parallel port or other 
  372.       destinations.
  373.     - Note that there is now a new release of "BlizKick" which fixes 
  374.       the problems mentioned below.
  375.     - Updated the documentation, fixed a minor mistake in the MMU
  376.       developer's manual.
  377.     - Included an upgrade patch from SetPatch 44.13 to 44.14 which, once
  378.       again, opens the 680x0.library instead of the 68040.library.
  379.       The RamLibFix is then no longer required since it is included now
  380.       in SetPatch anyhow.
  381.     - MuGuardianAngel: The DUMPLIST routine had a bug and might have
  382.       allocated too less memory. Luckely, this had the only side effect
  383.       that not all of the mung list would have been dumped correctly, it
  384.       did not trash any memory.
  385.     - MuGuardianAngel: The DUMPLIST option now also makes use of the 
  386.       SegTracker to print segment/hunk information of the allocating
  387.       routine.
  388.     - Installation scripts: Due to a bug in the BuildMMUConfig.rexx
  389.       script, the on-board hardware of certain P5 boards has been disabled
  390.       completely. Urgl.
  391.     - mmu.library: Added a new command for the ENVARC:MMU-Configuration,
  392.       "FOR". It executes the command given as argument if the manufacturer
  393.       product code fits, possibly several times if more than one board is
  394.       in the machine.
  395.     - mmu.library: The MMU-Configuration file can now be put into DEVS: as
  396.       well since some people seem to have problems with the library and
  397.       HappyEnv.
  398.     - mmu.library: Added another new command "ClearMMU" which will re-run
  399.       the MMU setup procedure at least partially. The intention behind 
  400.       this is to override or ignore a previously loaded MMU tree at least
  401.       partially in places where it is sub-optimal or incorrect. This seems
  402.       to be required by some Apollo boards.
  403.     - mmu.library: EnterContext() and LeaveContext() are no longer running
  404.       into the risk of breaking a Forbid(), provided AllocMem() doesn't.
  405.       NOTE THAT I NEVER DOCUMENTED THIS FEATURE ANYHOW.
  406.       This might help for some critical applications where a launched task
  407.       must run in a new context.
  408.       Due to a feature of exec, you cannot enter a context before you
  409.       AddTask() a new task, sigh.
  410.     - mmu.library: Due to a trashed register, the library crashed upon
  411.       detection of an 68040 or 68060 with a disabled or otherwise non-
  412.       functional MMU. Note that it would have detected the EC processors
  413.       correctly, though, including the 68EC030. This release should do 
  414.       better. Thanks to Pavel for detecting this.
  415.     - Fixes: Added a fix to repair the UMult64()/SMult64() bug of the Os
  416.       for the 68000 and 68010 processors. Not required for the up-to-date
  417.       release of SetPatch, but otherwise recommended.
  418.     - mmu.library: AddConfigDev() is now supported, but the implementation
  419.       depends on some internals of the expansion.library. Hopefully, 
  420.       nobody will change them. The MuLib tries to check whether the ROM
  421.       function is still installed. In case it is, the code will jump into
  422.       the old ROM code. In case it isn't, a replacement routine is used.
  423.     - 680x0.libraries: AddConfigDev() is now passed thru, presumably to the
  424.       mmu.library function.
  425.     - Installation: Finally, wrote a (rather complicated) installation
  426.       script for automated installation.
  427.     - Included various fixes for the BVisionPPC driver and more "software
  428.       fluff" for the installation process.
  429.     - 68040.library: Impoved the GetMsg() workaround for programs that
  430.       call GetMsg() in a tight loop.
  431.     - 68040.library: Fixes now a bug in the mathieeesingbas.library 
  432.       which doesn't use a FPU since it is setup before this library is
  433.       setup.
  434.  
  435.  
  436. Release 42.2
  437. ---------------
  438.     
  439.     - The 42.1 release automatically marked all hardware pages as
  440.       cacheinhibited serialized. Looks like even that was too much for
  441.       some hardware boards, I don't know why. This should be the proper
  442.       default anyhow. I disabled this again, even though this means,
  443.       as for 42.0 and before, that a MMU-Configuration is *mandatory*
  444.       if you use the library as "stand-alone" instead on top of a third-
  445.       party 68040/68060 library.
  446.  
  447. Release 42.1
  448. ---------------
  449.  
  450.     - MuFastChip: Forgot to include the latest mmu.library in the latest
  451.       upload. Sorry.
  452.     - Installation: P5Init, PPCIdentify, P5Identify reworked again, it
  453.       enables now explicitly the bus error generation of the A4000
  454.       motherboard resources.
  455.     - Installation Rexx scripts: Added a "NoP5" keyword to disable ex-
  456.       plicitly the P5 identification steps which seem to be problematic
  457.       for some boards for reasons that are beyond me.
  458.     - MuManual: Fixed some typos, corrected some mistakes, clarified some
  459.       formulations. Thanks to Etienne Voigt for proofreading!
  460.     - Organization: The "MMULib" archive is now the user archive, all
  461.       developer information went into the "MuManual" archive, including
  462.       the autodocs, the includes, the bmaps and some example sources.
  463.       This will help to keep the archive short.
  464.     - mmulib: The CurrentContext() function forgot to Forbid() properly.
  465.       Note that you still need a Forbid() bracketing or the result code
  466.       might be pretty useless. The propability that this broke code is
  467.       very low, though.
  468.     - mmulib: GetMappingProperties() was simply broken in V42.0 and below.
  469.       Sorry, this got fixed. This function hasn't been used yet, so this
  470.       bug was left unnoticed.
  471.     - mmulib: Even if "ClearTTX" is missing in the MMU-Configuration, the
  472.       library cache-inhibits now the access to expansion boards. This is
  473.       just a safety bonus.
  474.     - Included a debug version of the library in the MuManual archive.
  475.     - BlizKick: In order to avoid a yellow alert, either BlizKick must be
  476.       modified or must be run behind SetPatch. The reason for the alert
  477.       is that BlizKick opens the mmu.library before the 68060/68040 lib
  478.       is open, which is and never has been legal. I just added an explicit
  479.       check for this condition in V42 because too many people ignored it.
  480.       As I said, "no discussion". This is a side effect of how the library
  481.       works and has to work.
  482.  
  483. Release 42.0
  484. ---------------
  485.  
  486.     - mmu.library: Added more error checking for the startup code, esp.
  487.       the MMU-Configuration file. Added a check for proper config-
  488.       uration, i.e. whether the library was (incorrectly) loaded in
  489.       front of SetPatch.
  490.     - Added a new function: RunOldConfig(). It runs a small supervisor
  491.       routine with the boot MMU configuration.
  492.     - 68040.library: Added an explicit check for correct configuration,
  493.       it will generate a requester in case no 68040 is available.
  494.     - MuGuardianAngel: Fixed a bug in the mung-wall check which could 
  495.       have reported one additional mung-wall damage in case the front 
  496.       wall was found defective. Added a workaround for a possible 
  497.       68060 firmware bug, the "U" bit is now always set in the MMU
  498.       descriptors to avoid unnecessary MMU writebacks.
  499.     - In case you see MuGuardianAngel hits of the z3scsi.device, run
  500.       the FixCybAccess program. It will work around the z3scsi.device 
  501.       hits as well. Thanks, Helmut.
  502.     - MuMove4K PREPAREEMUL moves now the low chip memory end to the
  503.       16K line, not to the 8K line. This might fix some Fusion
  504.       problems. Thanks, Pavel.
  505.     - Improved the error messages of MuFastZero a little bit.
  506.     - Reworked P5Identify and PPCIdentify to make these two more
  507.       stable.
  508.     - Added another external MMU setup command, P5Init. It should 
  509.       keep care about all P5 specific cache settings and should
  510.       setup the PPC and the BOOT-MMU-Port automatically. All manual
  511.       P5 specific entries in the MMU-Configuration except graphic 
  512.       board cachings are obsolete now and should be replaced by
  513.       P5Init.
  514.     - Rewrote both setup scripts to reflect the changes in the P5
  515.       setup logic, i.e. ScanMMUPort has been replaced by P5Init and
  516.       all P5 specific cache settings have been removed.
  517.     - Added stack increasement patches for the mfm.device (CrossDos)
  518.       and IPrefs 40.7 in case you do not yet use Os 3.5. Thanks Gene.
  519.     - Added a fix for two bugs in ramlib. First, its stack is too
  520.       low. Second, it uses SIGF_SINGLE as message bit for its process
  521.       port which could cause some race conditions with semaphores in
  522.       library setup code.
  523.     - The MuGuardianAngel patch report and automatic IRQ check have 
  524.       been reworked a bit. The "patches overwritten" message is now
  525.       no longer periodically generated, but will be suspended up to
  526.       the next "real" hit where another message will be generated.
  527.     - The MuGuardianAngel automatic IRQ stack was not only useless,
  528.       but in fact broken. This does not go for the stack check of the
  529.       exec memory handling functions which was and still is fine.
  530.       Good enough it was recommended to leave the IRQ check disabled. 
  531.       "Nearly out of stack" warnings were not generated by the IRQ code 
  532.       at all, and the stack overflow and stack underflow messages
  533.       usually report "bogus" hits due to its construction. Stack 
  534.       snooping is now by default ENABLED, except for "out of bounds"
  535.       reports, which still requires STACKSNOOP option explicitly.
  536.       Added an option to adjust the minimal stack size for the
  537.       "Nearly out of stack" reports, but it can be made only larger,
  538.       i.e. more "picky".
  539.     - mmu.library: The pre-42 releases only marked the zero page as
  540.       non-blank which might have caused problems for some Mac emu-
  541.       lators. It now marks the lowest 32K as valid. Former versions
  542.       set it to "cacheinhibit", it is now set to "cacheinhibit nonser-
  543.       ialized imprecise".
  544.     - mmu.library: The low-memory limit up to which the mmu.library
  545.       has to software-emulate accesses has been made adjustable.
  546.     - mmu.library: Due to a bug in the high-level mapping list manage-
  547.       ment, MAPP_INDIRECT did not work correctly.
  548.     - mmu.library: BuildIndirect() performs now a few more consistency
  549.       checks and is less restrictive for MAPP_INVALID and MAPP_SWAPPED.
  550.     - Updated the DMAInitiate() function, it provides now a return code
  551.       instead going guru if it doesn't like the parameters.
  552.     - Updated MuOmniSCSIPatch to reflect the changes made to 
  553.       DMAInitiate().
  554.     - Fixed many documentation errors in mmu.doc, updated and checked
  555.       exception.doc again.
  556.     - Included a demo program for indirect descriptor handling.
  557.     - Speedup SetIndirect() somewhat by placing this routine directly
  558.       in the MMU drivers as a "native" operation.
  559.     - Added a new LVO "SetIndirectArray()" to set more than one
  560.       indirect descriptor at once. Should be *very* fast.
  561.     - The startup command "DescriptorCacheInhibit" did not pass a proper
  562.       result code on success and hence caused a yellow alert. This bug
  563.       was only noticable in some of the V42 betas where proper result
  564.       code checking was introduced.
  565.     - mmu.library: WithoutMMU() disables now the CPU caches as well to
  566.       allow a safe access to non-cacheable addresses.
  567.     - MuFastZero: In case MuFastZero is removed (why?) the unmapped chip
  568.       memory is set to IMPRECISE and NONSERIALIZED to provide at least
  569.       a minimal speedup.
  570.     - Added "AmigaGuide" versions of the autodocs.
  571.     - Included a new version of BPPCFix by Frank Wille. Thanks, Frank!
  572.       Using this program will allow you to replace the ROM-based
  573.       libraries of the Blizzard-Boards.
  574.       Thanks Stephen for working this out, and for making this trick
  575.       possible!
  576.     - Included a "RKRM" style manual and tutorial for the MuLib in "dvi"
  577.       and "postscript" format.
  578.  
  579. Release 41.4
  580. ---------------
  581.  
  582.     - mmu.library: The CachePre/PostDMA() functions are now a bit more 
  583.       error tolerant and handle cases where a DMA device attempts DMA 
  584.       transfer to a non-existing memory region more gracefully.
  585.     - 680x0.library: Sets now the memory attributes of the supposed-to-
  586.       be remapped low-memory header to MEMF_FAST instead to 0 to avoid
  587.       a zero return value of TypeOfMem().
  588.     - MuFastZero: Sets now the memory attributes of the supposed-to-
  589.       be remapped low-memory header to MEMF_FAST instead to 0 to avoid
  590.       a zero return value of TypeOfMem(). Lowered the priority of the
  591.       rendezvous port.
  592.     - FastIEEE: Optimized the IEEEDPFloor and IEEESPFloor in case a 060
  593.       processor has been found. Note that this makes currently no
  594.       difference at all since there is currently no 68060.library that
  595.       provides the fpsp.resource.
  596.  
  597.     
  598. Release 41.3
  599. ---------------
  600.  
  601.     - disassembler.library:    fmovem.x <dynamiclist>,memory was disassembled
  602.       incorrectly. Fixed.
  603.     - mmu.library: SetPropertiesMapping() accepts now base=0 and lenght=0
  604.       as a special case to transfer the complete list.
  605.     - 68040.library: Removed some unnecessary strings and references to the
  606.       math libraries. 
  607.     - mmu.library: Added workarounds for possible DMA disable counter under-
  608.       runs that might have happened in case the library gets active while 
  609.       DMA is active. 
  610.     - MuMove4K: Added more options:
  611.       IGNOREVERIFY/S    Disables the verify check for the reboot code
  612.       REVERSE/S        Allocates the memory for the resident tags in
  613.                 reverse direction
  614.       LOWPRI/S        Lowers the priority of the MuMove4K resident 
  615.                 tag as a possible workaround for some wierd 
  616.                 other hacks.
  617.       Added more error messages in case something goes wrong.
  618.     - MuForce: Forgot to restore the Z-page mode and physical location on
  619.       removal. Ooops. Thanks, Heinz!
  620.     - MuFastZero: Added a "FastVBR" option because it was easy to do and
  621.       canonical to have. NOTE THAT THIS OPTION IS NOT REQUIRED IF YOU
  622.       REMAP THE VECTOR BASE ANYHOW.
  623.     - MuGuardianAngel: Prints now the stack boundaries in case of stack 
  624.       problems, let it be overflow, underflow or nearly out of stack. 
  625.       Thanks to Heinz, again.
  626.       Provides an option to disable these warning messages, but beware! 
  627.       This doesn't mean bugs will go away, it just silences MuGuardianAngel.
  628.       Remember, this program is provided to scream upon problems it detects.
  629.     - Setup scripts: Greatly enhanced! The new setup script will also 
  630.       re-set the memory caching modes for boards whose boot-roms already 
  631.       run the MMU. Fixed a minor glinch that produces a (bogus) error report
  632.       in case LIBS:MMU already existed.
  633.       Remember that you can't run the ppc.library on the MuLib setup, sorry.
  634.     - Added a new setup script "ScanToConfig" that takes a "MuScan" output
  635.       from a system running under a third-party 68040/68060.library and 
  636.       generates an MMU-Configuration file from it. To use it, re-install a 
  637.       non-MMU-aware processor library, boot the system, then enter the 
  638.       "Install" directory and run the script. MuScan must be available 
  639.       in the current directory as it is in the archive.
  640.       Please let me know how this new script goes, maybe it's smarter.
  641.     - Added a new program "MemModes" to the installation tools. It will
  642.       auto-generate the memory caching setup as the mmu.library does if
  643.       the MMU is found non-active. Possibly an improvement for those boards
  644.       which - strange enough - turn on the MMU before booting.
  645.     - Added a patch for the new SetPatch in the BoingBag, check the "Fixes"
  646.       directory.
  647.     - Again: When will people finally learn to read the FAQ? *Sigh*
  648.       In case MuFastZero complains "The zero page is already remapped",
  649.       ---> READ THE GUIDE. <---
  650.  
  651.  
  652. Release 41.2.1
  653. ---------------
  654.  
  655.     - Updated the 68040.library to 40.6. It builds now the fpsp.resource
  656.       which offers opcode emulation to external hosts.
  657.     - Included FastIEEE which re-directs the mathieee-library routines to
  658.       the fpsp.resource for optimal performance.
  659.     - FastIEEE fixes, too, some bugs in the mathieee libraries. 
  660.       IEEEDPCmp() is broken and orders some numbers "the wrong way". 
  661.       IEEEDPPow() and IEEESPPow() are broken and return non-sense for 
  662.       special arguments.
  663.  
  664. Release 41.2
  665. ---------------
  666.  
  667.     - The MMU Library build-in AddMem failed in case the base or length
  668.       were not aligned to 64K boundaries. It now rounds to the next 64K
  669.       boarders such that the supplied area is at least mounted partially.
  670.     - The idea to disable the TTx registers in the mmu.library was 
  671.       unfortunately not a very smart idea as it broke the code on some
  672.       machines. Re-established the old rule with the only exception that
  673.       the TTx registers are initialized for the EC040.
  674.     - The ColdReboot() patch of the 68040.library used the MMU registers
  675.       even on a system without MMU. Fixed.
  676.     - MuMove4K checks now all libraries, devices, ports, resources and 
  677.       resident modules whether they violate the 8K boundary.
  678.     - 68040.library: Forgot to disable the caches in ColdReboot().
  679.     - 68040.library: The motorola OpErr handler did not consider tracing
  680.       correctly. Fixed.
  681.     - Finally wrote and included the 68020.library and the 68030.library,
  682.       hence "FPU" will work on these machines.
  683.     - Updated MuGuardianAngel: Added a new keyword "DUMPWALL" that prints
  684.       the contents of a broken mung-wall and of broken memory cookies.
  685.  
  686. Release 41.1
  687. ---------------
  688.  
  689.     - ScanMMUPort was broken and scanned for the wrong port. *Sigh*
  690.       This release should work better on Blizzard boards.
  691.     - AddMemList() uses now RebuildTreesA() to rebuild user and
  692.       supervisor tables at once and is therefore a bit more error
  693.       tolerant.
  694.     - The mmu.library will now support CachePreDMA/CachePostDMA for
  695.       the EC040 and EC060 processors as well.
  696.     - The 68040.library will now disable the TTx registers manually
  697.       such that the "generic" board does no longer require an
  698.       ENVARC:MMU-Configuration file.
  699.     - The 68040.library will now enable copyback caches for the EC040.
  700.     - Some of the MuTools did not unload properly if loaded from the workbench,
  701.       fixed.
  702.     - The MuTools are now a bit more error tolerant due to a new function in the
  703.       V41 mmu.library which gets used.
  704.  
  705. Release 40.60
  706. -------------
  707.  
  708.     - fixed the shutdown code of MGA, thanks to Stephan!
  709.     - disabled a kludge in the mmu.library which write protected 
  710.       a kickstart image at 0x00200000 and up by checking the name 
  711.       of execbase. This kludge might have conflicted with some softkickers.
  712.     - Because people tend not to read guides, I added the 
  713.       arguments "WRITEPROTECTED" and "INVALID" to the library build-in 
  714.       "SetCacheMode". Note that they work different to what "MuSetCacheMode" 
  715.       does. Here, "WRITEPROTECTED" and "INVALID" are just aliases to "ROM" 
  716.       and "BLANK", hence enable the most defensive protection strategy.
  717.     - Added a new LVO "RebuildTreesA" which is "officially" not yet 
  718.       existing and will be documented in V41. More LVOs might be added up 
  719.       to V41, but please *DO NOT* yet call them as they did not exist 
  720.       in V40.50.
  721.     - Fixed the installation script, due to a typo the P5 MMU boot hack 
  722.       was not detected.
  723.     - Fixed the P5Detect program which just looked to the wrong
  724.       identification resources. Ooops. Installation on "non-standard"
  725.       boards should be smoother now.
  726.     - Fixed a bug in the disassembler.library which disassembled the
  727.       lea (offset.L,pc)
  728.       wrong. The offset was wrong by two bytes.
  729.     - The release number in the MuForce guide was wrong. 
  730.     - When will people finally learn to read the FAQ? *Sigh*
  731.       In case MuFastZero complains "The zero page is already remapped",
  732.       ---> READ THE GUIDE. <---
  733.  
  734.  
  735. Release 40.51.1
  736. -------------
  737.  
  738.     - disabled the layers.library kludge for MuGuardianAngel if V40
  739.       is found active. It is luckely no longer required.
  740.  
  741. Release 40.51
  742. -------------
  743.  
  744.     - fixed a bug in the 68060 startup logic which left the MMU disabled
  745.       in case it was disabled before. This made the custom 68060.library
  746.       useless.
  747.     - included the 40.17ß3 release of Carten Schlote's 68060.library
  748.       which (for the first time) makes use of the MMU.library.
  749.  
  750. Installation of this library requires some care as IT DOES NOT automatically
  751. auto-detect P5 hardware and special setup magic for this hardware. This is
  752. not because the library is "broken" in some sense, but because P5 didn't 
  753. follow the CBM guidelines when designing their hardware. Therefore, an
  754. experimental installation script has been written. This script must be
  755. run as follows:
  756.  
  757.     - Unpack the archive to disk,
  758.     - Enter the following commands:
  759.  
  760. cd <MMULib>/Install    ;where <MMULib> is the directory you unpacked this 
  761.             ;archive to
  762.  
  763. SYS:Rexxc/rx BuildMMUConfig.rexx ENVARC:MMU-Configuration
  764.  
  765.     - The last command builds the MMU configuration and writes it
  766.       to ENVARC:MMU-Configuration. It might also copy ScanMMUPort
  767.       to LIBS:MMU. This is an external setup command for the library
  768.       and might or might not be required. Older P5 hardware does *not*
  769.       require it (I would guess that this is explicitly for the 
  770.       Blizzards, but I'm not sure).
  771.       Non-P5 hardware will not require it at all.
  772.       You might want to hand-edit or optimize this script if you need,
  773.       as it will contain several optimizations for graphics cards and
  774.       other known boards.
  775.  
  776.     - KEEP THE OLD 68060.library IN A SAFE PLACE.
  777.     - Make sure to install the 40.51 edition of the mmu.library
  778.     - Copy the 68060.library to LIBS:
  779.     - Reboot the computer and wish the new library luck. (-:
  780.  
  781. This edition of the '060 lib does *not yet* include correct VMM management
  782. and FPU control functions (hence, C:FPU will not yet work). It is shorter
  783. and costs less memory because it leaves the MMU setup to the mmu.library.
  784. (Note that this release contains still debugging information).
  785.  
  786.  
  787. In case the installation failed:
  788.  
  789.     - Make sure the mathieedoubbas.library you're using is truely the
  790.       official 38.x or the patched and bugfixed 39.1. Some other third-
  791.       party products may fail to work correctly if the 68060 support
  792.       code is not yet loaded.
  793.  
  794. In case running the library fails (i.e. system doesn't boot):
  795.  
  796.     - Make sure LIBS:mmu/ScanMMUPort is really available at boot-up
  797.     - Please re-boot the computer without the startup-sequence,
  798.     - Keep ENVARC:MMU-Configuration in a safe place,
  799.     - Re-install the old 68060.library.
  800.     - Boot the computer again,
  801.     - Run "MuScan" and keep the output.
  802.  
  803. Then, please sent me the output of MuScan, and the ENVARC:MMU-Configuration
  804. file with a tiny note what exactly happened (or did not happen).
  805.  
  806.  
  807. Release 40.50
  808. --------------
  809.  
  810.     - added external command scanning in case a setup command is
  811.       not found "resident".
  812.     - included Richard Körber's PatchWork and Olaf Barthel's
  813.       Sashimi. The "PatchWork" edition is *NEW* and *NOT YET AVAILABLE*
  814.       otherwise. Big "thank you" to Richard for updating it for this
  815.       archive. Big thanks to Olaf Barthel for allowing me to include
  816.       his "Sashimi" in the archive.
  817.     - bumped the version number.
  818.     - Final release.
  819.  
  820. Release 0.48
  821. --------------
  822.     - mmu.library: Added a new command in the MMU-Configuration file,
  823.       "DescriptorCacheInhibit". It controls whether the MMU library
  824.       should disable the data cache for the descriptors. This is by
  825.       default OFF as this feature means more trouble for the library,
  826.       and is not required for using the library. However, this might
  827.       be a workaround for programs that hack the MMU table themselves,
  828.       which is not supported anyhow. Set it to "ON" if you MUST use
  829.       these programs.
  830.     - Added another VMM support function.
  831.     - MuGuardianAngel: The "memory header" output was broken, fixed.
  832.       Added more security checks, MuGuardianAngel will warn you in
  833.       case its function entries have been patched (which is not 
  834.       supported)
  835.     - MuGuardianAngel: Added automatic stack checking within the
  836.       memory allocation functions - an overrun stack seems to be the
  837.       most common source of MuGuardianAngel problems. MuGuardianAngel
  838.       will now detect an "nearly out of stack" condition in the memory
  839.       handling, and will provide an "emergency" stack in case this
  840.       happens. It will then generate a warning, regardless of whether    
  841.       stack snooping is enabled or not.
  842.       Interestingly, the RAM-Handler and the FastFilingSystem are the
  843.       most common sources of stack-overflows. This should be fixed for 
  844.       the RAM handler with "PatchRAM" in this archive, the FFS stack
  845.       should be added manually in the RDB, though. The smallest re-
  846.       commended stack size is 786 bytes, not less!
  847.     - P96: (yes, you read this correctly) supports now the mmu.lib if
  848.       it is available.
  849.     - Added an experimental GfxCard setup program to optimize cacheing.
  850.       This function is included in P96 anyhow, so not really required.
  851.  
  852.     - mmu.library: MOVE16 is now "sort of" supported, in the sense that
  853.       the exception handler will be able to handle it. However:
  854.       - MOVE16 is not supported by all Amiga hardware, it may crash,
  855.       - A MOVE16 on a 68040 is potentially dangerous due to a bug in
  856.         the CPU. A MOVE16 might invalidate cache lines which are not
  857.         related to the MOVE16 operation at all. There is currently a
  858.         workaround for this, namely: Do not set the "imprecise", or
  859.         "user page" bits 0-3 for swapped, invalid or supervisor only
  860.         pages. I do not guarantee that this workaround will remain
  861.         valid. *JUST DON'T USE MOVE16.*
  862.       - A MOVE16 may cause double reads, do not use this to read from
  863.         hardware registers that cannot tolerate this. Do NOT use it
  864.         at all!
  865.       - A MOVE16 which causes the exception handler to enter may be
  866.         completed by means of ordinary writes, which means that in
  867.         this situation no burst access is used, and the order of the    
  868.         data written out or read might be different from that of a
  869.         true MOVE16. *JUST DO NOT USE IT, OK!*
  870.  
  871.     - mmu.library: On read/modify/write accesses, the library might
  872.       have reported a write protection fault instead of a simple 
  873.       write fault on the write cycle of the instruction. Fixed.
  874.  
  875.     - MuGuardianAngel: Added more consistency checks, added checks
  876.       and support for memory pools, made some error messages more
  877.       informative.
  878.  
  879.     - MuMove4K: Added the NOREBOOT option to avoid unnecessary reboots
  880.       if the system is rebooted by a second program afterwards anyhow.
  881.  
  882.     - Included a patch for the V44 SetPatch.
  883.  
  884. Release 0.47
  885. --------------
  886.     - mmu.library: Changed again the cache control logic a bit. Please
  887.       try DMA transfers again. The new logic does not block interrupts
  888.       as long as the old logic, hence might avoid problems if fast
  889.       interrupt processing is required. It should be *slightly* faster
  890.       as well.
  891.     - MuForce: MuForce catches now supervisor exceptions as well if you
  892.       specify the "CAPTURESUPER" keyword. This requires patching of
  893.       some autovectors.
  894.     - Added a new drawer "Contributions", containing more tools from
  895.       other people I regard as very useful. This is "Sashimi" by
  896.       Olaf Barthel, and "PatchWork" by Richard Körber. Thanks Olaf,
  897.       thanks Richard for allowing me to include your great work!     
  898.     - Run all guides thru ISpell, hopefully correcting most typos.
  899.     - MuMove4K: The PREPAREEMUL option disabled the CPU instruction
  900.       cache. I expected the ROM would re-enable it somewhat later, but
  901.       it didn't. Fixed.
  902.  
  903. Release 0.46
  904. --------------
  905.     - mmu.library: Found that the "ramlib" task is really very low on
  906.       stack. I'm now swapping the stack on library startup to avoid
  907.       problems.
  908.     - updated the mmu.lib exception handler. It is now possible to use
  909.       the exception mechanism to auto-extend the stack and to keep the
  910.       user stack on virtual memory. The new "message hook" mechanism
  911.       does not require user stack space. However, an additional patch
  912.       to the exec switch function is required for this trick. This
  913.       patch is currently not included in the mmu.library - basically
  914.       because this is not directly MMU related.
  915.     - MuGuardianAngel will now stop to check for a valid free memory
  916.       counter if it finds a problem and reports the problem immediately.
  917.     - MuForce is now able to capture even "ordinary" MC68K exceptions.
  918.       This can be disabled with the new "NOGURUPATCH" option.
  919.     - Included a "synchronous" version of the 680x0.library because the
  920.       asynchronous outsmarted several systems.
  921.     - mmu.library: The chip ram is now by default marked as cacheinhibit 
  922.       imprecise nonserialized. This will speed up chip ram access a bit
  923.       for the 68060 and 68040. Works of course only if the MMULib is
  924.       used to setup the MMU tables, i.e. for users of the V40 68040 lib.
  925.       Video RAM of several graphics cards can be setup in the same way
  926.       as well, but since there's no way to identify expansion hardware as
  927.       video ram, you've to do that manually.
  928.     - mmu.library: The F-Space is now by default marked as cacheinhibit
  929.       to allow (IMHO misdesigned) hardware to map in here without telling
  930.       the system. This can be disabled by using the MMU-Configuration
  931.       file.
  932.     - Added a new MuTool: MuFastChip. This tool will enable the imprecise
  933.       or nonserialized cache mode for chip memory and will hence improve
  934.       chip memory access performance for systems where a third-party 040 
  935.       or 060 library does not setup the MMU tables in the optimal way.
  936.       The MMU.library (and hence the V40 68040.lib) *will* build its own
  937.       MMU tables with this feature enabled anyhow if it doesn't find an
  938.       MMU table to start from. 
  939.     - Fixed the SetPatch fix. (You kept the original, right? :-)
  940.       It might have been that the 43.7 edition installed a fix for the
  941.       mathieeesingbas.library even if this fix is unnecessary and fatal,
  942.       as it is for the 68881/68882 FPU.
  943.  
  944. Release 0.44
  945. --------------
  946.     - mmu.library:    The "AddMem" command in the MMU-Configuration file
  947.       was broken. Added the memory twice, causing nothing but a mess.
  948.     - Added a safety check for "AddMem", the command is now ignored
  949.       in case the memory in question is already added.
  950.     - "SetCacheMode" argument "valid" was broken and did not validate
  951.       the memory at all.
  952.     - AddMem'd memory was added after the MMU table setup, hence wasn't
  953.       used for the MMU descriptors. The library *tries now* to add it
  954.       as soon as possible to make some use of it for building the MMU
  955.       trees.
  956.     - MuFastZero: The FORCENATIVE option generated a failure code in
  957.       case the zero page wasn't remapped, stopping additional options
  958.       like MOVESSP from working.
  959.     - MuGuardianAngel: The "MemHeader free counter incorrect" error
  960.       handler did not save back one register and hence caused additional
  961.       hits.
  962.     - MuGuardianAngel: Ooops, found a problem of the RAM-Handler. Not
  963.       a MuGuardianAngel problem, but a real design fault of RAM: DO NOT
  964.       try to delete and write to the RAM: disk at the same time, this
  965.       will cause lots of trouble.
  966.     - Included a fix for the CBM mathieeedoubbas.library 38.2. This
  967.       library fails to compare floating point numbers below zero
  968.       correctly in some cases. The P5 library patches mathieeedoubbas
  969.       to fix this, but the 68040.library should not be a replacement
  970.       for SetPatch. To apply the patch,
  971.  
  972. 1)      Copy the file LIBS:mathieeedoubbas.library to RAM:
  973. 2)      Copy the file mathieeedoubbas.pch in the directory "Fixes" to RAM:
  974. 3)      Copy the "spatch" program at the same place to RAM:
  975. 4)      Change the directory to ram: with "cd RAM:"
  976. 5)      Apply the patch with    "spatch mathieeedoubbas.library"
  977. 6)      Copy the file RAM:mathieeedoubbas.new to
  978.         LIBS:mathieeedoubbas.library. It contains the fixed library.
  979.  
  980.     - In case the V40 68040.library slowed your computer down:
  981.       copy the file "MMU-Configuration" from the "ENVARC" drawer into
  982.       "ENVARC:". In case this causes crashes with Z-II memory, follow
  983.       the instructions in the file and remove one semicolon in front of
  984.       the "SetCacheMode" command. 
  985.     - Removed the debugging information from all files.
  986.     - Added the MMU master guide. Please check this, is this understand-    
  987.       able? In case I forgot to mention you in the credits, please let
  988.         me know!
  989.     - Moved all libraries to a separate directory, "Libs"
  990.     - Included a new library, the 680x0.library. This is the CPU
  991.       unspecific CPU driver. It's job is to detect which CPU is avail-
  992.       able in your system, and to load the CPU specific code. It there-
  993.       fore acts very much like the P5 68040dummy.library, except that
  994.       it remains in the system and provides user-callable function
  995.       entries for querying the CPU/FPU/MMU type and to setup the FPU
  996.       exceptions. The CPU specific library *should never be called
  997.       directly*, this library will re-route the calls to the correct
  998.       library. Furthermore, it loads the library in background, helping
  999.       to speed up the boot process a bit. 
  1000.     - A special edition of SetPatch is available that loads the 680x0
  1001.       library instead the 68040.library, regardless of which processor 
  1002.       is available. The 680x0.library will then even try to load an
  1003.       68000.library or 68020.library. This library could be used, for
  1004.       example, to install line-F instructions to emulate the FPU 
  1005.       completely in software, even for a 68020 or 68000 without FPU.
  1006.       To patch "SetPatch", 
  1007.  
  1008. 0)    Keep a copy of SetPatch in a safe place.
  1009. 1)      Copy the file C:SetPatch to RAM:
  1010. 2)      Copy the file SetPatch.pch in the directory "Fixes" to RAM:
  1011. 3)      Copy the "spatch" program at the same place to RAM:
  1012. 4)      Change the directory to ram: with "cd RAM:"
  1013. 5)      Apply the patch with    "spatch SetPatch"
  1014. 6)      Copy the file RAM:SetPatch.new to C:SetPatch. This is the
  1015.     inofficial 43.7 edition of SetPatch.
  1016.  
  1017.     - Included a new program, "FPU" in the "Shell only" drawer. This
  1018.       program controls the exception generation of the FPU. It will
  1019.       only work with the 680x0.library and the V40 68040.library
  1020.       installed.
  1021.  
  1022.  
  1023. Release 0.42
  1024. --------------
  1025.  
  1026.     - 68040.library: Only cosmetic changes. Added a AN_Zombie guru in
  1027.       case the ColdReboot() function returned. I've no idea how this
  1028.       could happen.
  1029.     - mmu.library: I don't thrust the AFF_68060 flag any more. The
  1030.       68060.library of the LC75 Apollo board does not set this bit
  1031.       correctly and hence identifies the 060 as 040. Hence, the library
  1032.       tried to install the wrong driver and crashed desparately. The
  1033.       library tries now to identify an 060 in case at least an 040 is
  1034.       indicated. The library updates then its own AttFlags copy 
  1035.       correctly. Outch! I don't know whether this is a typo in the
  1036.       sources of the 68060.lib, or this intended and something "sneaky"
  1037.       I fail to understand. 
  1038.     - Fixed one bug in the disassembler.library. It failed to disassemble
  1039.       64 bit arithmetics correctly.
  1040.     - MuFastRom: In case no argument is given, the program uses now the
  1041.       default "On".
  1042.     - MuFastZero: Again, made "On" the default argument. Added the
  1043.       "MoveSSP" and "StackSize" arguments to relocate the supervisor
  1044.       stack to fast ram. This does not make use of the MMU.
  1045.     - Added the "CheckFPU" command, in the "Shell_Only" drawer. This
  1046.       program prints the version number of a 68040 FPU if one is avail-
  1047.       able. Two versions exist, the V40 "original" which is very buggy
  1048.       and the V41 "revised" with less bugs. The 68040.library supports
  1049.       currently both, with lots of workarounds for the V40. Please
  1050.       contact me in case you find a V40 edition in your Amiga.
  1051.     
  1052.  
  1053. Release 0.41
  1054. --------------
  1055.  
  1056.     - Forgot to update the version number in 0.40. Reported 0.38. Oops.
  1057.     - TTx parsing was still not 100% correct, but much better. Fixed.
  1058.     - Due to a typo, branch cache flushes were effectively disabled.
  1059.       Outch! Forgot one single "$".
  1060.     - Added branch cache flushes on context switches, recommended by
  1061.       Motorola.
  1062.     - Added includes, autodocs and .fd files for the 68040.library.
  1063.     - Updated MuFastZero and MuFastROM to include and set the cache
  1064.       flags according to the mirrored RAM. This is of importance in
  1065.       case non-cacheable Z-II fast RAM is used to build the mirror.
  1066.     - Made mild modifications to the FPSP FPU emulator package to speed
  1067.       it up a bit. The 40.1 release is now unnoticably faster than the
  1068.       Mike Sinz 37.30 release, which is again unnoticably faster than
  1069.       the P5 release.
  1070.     - Added a workaround in GetMsg() to keep some brain-dead programs
  1071.       working that call GetMsg() in a tight loop without giving
  1072.       interrupts a chance to occur. These programs tend to block the
  1073.       computer completely, especially if the ROM is remapped to 
  1074.       cacheable, burstable memory. The workaround is a single NOP.
  1075.  
  1076. Release 0.40
  1077. --------------
  1078.     New in this release:
  1079.  
  1080.     - Added four internal undocumented LVOs for external CPU drivers.
  1081.     - Fixed a bug in the CPU detection routine. A 060 EC or LC was
  1082.       not recognized. Outch! Which smart guy at Motorola decided to use
  1083.       the same processor ID for both products? The EC doesn't have a MMU,
  1084.       the LC - as for example used by the LC75 Apollo board - does.
  1085.       This might well explain a lot of problems of the Apollo board....
  1086.     - Fixed a bug in the library init routine which would cause a guru
  1087.       in case no MMU is available at all. The library MUST load, and
  1088.       some functions will be available even without an MMU.
  1089.     - Fixed several minor bugs of the TTx parsing routine, hopefully
  1090.       correcting problems with some ancient 040 library releases that
  1091.       didn't make use of the MMU (how should that work?)
  1092.     - Fixed a serious bug of the Alert() replacement function, the stack
  1093.       was used plain wrong. Thanks Etienne!
  1094.     - Included an updated and more streamlined version of MuLockLib,
  1095.       thanks to Gunther Nikl for providing it.
  1096.     - Updated MuSetCacheMode, added more options.
  1097.     - Added a configuration/preferences file and a preferences file
  1098.       parser.
  1099.     - Included now the "stripped" versions of the libraries in a sub-
  1100.       directory of the same name. These editons don't contain the de-
  1101.       bugging information and are therefore shorter.
  1102.     - *News flash* 
  1103.       This release comes with an upgraded version of the 68040.library.
  1104.       This library is still in "beta" stage, but makes already use of
  1105.       the mmu.library for the MMU configuration. It is for that reason
  1106.       even shorter than the 37.30 release, even though it uses the latest
  1107.       68040 FPU emulation code from Motorola.
  1108.       FPU exceptions are configurable thru an LVO vector of the library,
  1109.       but I haven't written a control tool yet. This will follow in the
  1110.       next distribution.
  1111.       This release *will only work* if the 37.30 runs on your machine,
  1112.       you should, however, edit the ENVARC:MMU-Configuration file to 
  1113.       to make some P5 boards working. The file should contain this line:
  1114.  
  1115. SetCacheMode    from 0x00f00000 size 0x00080000 valid iospace
  1116.  
  1117.       If you use this edition of the 68040.library, it might disable
  1118.       caches for the Z-II address space completely. If this is not
  1119.       desired, you may turn them on again with the following line in
  1120.       the MMU-configuration file:
  1121.  
  1122. ClearTTX    
  1123.  
  1124. The path of the preferences file is ENV:MMU-Configuration or 
  1125. ENVARC:MMU-Configuration if the first file is not found. The file looks like
  1126. a standard shell script except that only three commands are known. All
  1127. other commands are ignored silently for forwards compatibility, more might
  1128. be made available in the future. The semicolon is used to separate comments 
  1129. from the commands, the text following a semicolon is ignored.
  1130.  
  1131.  
  1132. Release 0.38
  1133. --------------
  1134.     New in this release:
  1135.  
  1136.     - Added four internal undocumented LVOs for external CPU drivers.
  1137.     - Fixed a bug in the CPU detection routine. A 060 EC or LC was
  1138.       not recognized. Outch! Which smart guy at Motorola decided to use
  1139.       the same processor ID for both products? The EC doesn't have a MMU,
  1140.       the LC - as for example used by the LC75 Apollo board - does.
  1141.       This might well explain a lot of problems of the Apollo board....
  1142.     - Fixed a bug in the library init routine which would cause a guru
  1143.       in case no MMU is available at all. The library MUST load, and
  1144.       some functions will be available even without an MMU.
  1145.     - Fixed several minor bugs of the TTx parsing routine, hopefully
  1146.       correcting problems with some ancient 040 library releases that
  1147.       didn't make use of the MMU (how should that work?)
  1148.     - Fixed a serious bug of the Alert() replacement function, the stack
  1149.       was used plain wrong. Thanks Etienne!
  1150.     - Included an updated and more streamlined version of MuLockLib,
  1151.       thanks to Gunther Nikl for providing it.
  1152.  
  1153. Release 0.37
  1154. --------------
  1155.     New in this release:
  1156.  
  1157.     - Added two tags for Get/SetContextData in preparation for the
  1158.       memory library.
  1159.     - Wrote a replacement AddMemList() function because some 
  1160.       versions of the 68040/68060.library functions patch this function.
  1161.       This release will adjust the MMU tables for the DEFAULT CONTEXT
  1162.       only, which means that all memory must be ready AT LEAST AS SOON
  1163.       AS A PRIVATE CONTEXT IS CREATED.
  1164.  
  1165.  
  1166. In case you've problems with this library release:
  1167. o) Please install the mmu.library_debug ON TOP of the mmu.library, i.e. use
  1168.  
  1169. copy mmu.library_debug to LIBS:mmu.library
  1170.  
  1171. o) Reset the system
  1172. o) Run Sushi or Sashimi to fetch the output. Give them a HUGE buffer
  1173. o) Load the library. MuLockLib would do that, for example.
  1174.  
  1175. Release 0.36
  1176. --------------
  1177.     News in this release:
  1178.  
  1179.     - Fixed MuMove4K, added the A1200 option and fixed the shutdown code.
  1180.     - Fixed MuLockLib, there was a slight chance for a crash (thanks to
  1181.       Gunther Nikl for reporting)
  1182.     - Fixed the .fd-File. I forgot to include two functions making
  1183.       the table useless, and forgot to include one library 
  1184.       function in the library lvo jump table. Outch!
  1185.     - Fixed the new memory map functions.
  1186.     - Tested indirect descriptor functions, included a new test,
  1187.       see MuIndirectTest.
  1188.  
  1189. I'm planning to upload the 0.36 to the Aminet next saturday, I won't be in
  1190. town from July 18th to August 8th. 
  1191.  
  1192. Release 0.35
  1193. -------------
  1194.     News in this release: Something in the library, even though no
  1195.     real serious bugs have been found. More functions, but more power-
  1196.     ful debugging tools.
  1197.  
  1198.     - Added support functions for memory maps, likely untested.
  1199.     - Added support functions for indirect descriptors and *VERY FAST*
  1200.       indirect page swapping.
  1201.     - Fixed a tiny bug in the 060 support which might have failed to
  1202.       detect physical bus errors correctly.
  1203.     - Fixed a bug in GetPageProperties which might have failed to
  1204.       read remapped memory correctly.
  1205.     - Streamlined the tag item parse functions.
  1206.     - Updated documentation and includes.
  1207.     - Wrote the disassembler.library, added to the distribution.
  1208.     - Updated MuForce: The program makes use of the disassembler.library
  1209.       and prints now a disassembly of the faulty code on demand.
  1210.     - Fixed a bug in MuGuardianAngel, stack dump was broken.
  1211.     - Updated MuGuardianAngel, included disassembly function.
  1212.     - Updated MuMove4K a lot, included a PREPAREEMUL function,
  1213.       wrote a better guide, drew a shell icon.
  1214.     - Included more shell tools, PrintBusError, ResetBusError and
  1215.       ClearTTx.
  1216.  
  1217. The Apollo LC060 75Mhz showed problems with the mmu.library. I don't know
  1218. how these problems arose, but it might be that the MMU doesn't like the over-
  1219. clocking. To test this, please run the "ClearTTx" program with the NATIVE
  1220. Apollo setup and check whether this works or not.
  1221.  
  1222. The PrintBusError tool will dump the bus error vector. It should always
  1223. point to the library.
  1224.  
  1225. The ResetBusError will repair the bus error vector in case it was messed
  1226. up by a program. It should be run WITHOUT an active debugger, or the result
  1227. will be worse, not better. An application for this program is to restore
  1228. the correct bus error handler after having used the "SoftBoot" program or
  1229. "SetCPU FastROM" or "CPU FastROM". Note that the latter two are obsolete
  1230. and replaced by MuFastROM.
  1231.  
  1232.  
  1233. Release 0.34.1
  1234. --------------
  1235.     I'm pretty happy with the 0.34 how it is now, I haven't found new
  1236.     bugs. This doesn't mean there are none, though. (-;
  1237.  
  1238.     New in this release:
  1239.  
  1240.     - Updated MuGuardianAngel a bit. The "hit" messages are now more
  1241.       informative and contain more detailed information about the
  1242.       cause of the hit, as for example which memory chunk was released
  1243.       etc... Thanks to Simon for the hint.
  1244.     - Added a new program "MuLink" to the MuTools. This is a shell-only
  1245.       developer tool for automatic "self-protection" of software. A
  1246.       program that gets "MuLink'd" will get its code (or other selected)
  1247.       segments automatically write protected. This is most important 
  1248.       for software that has to run on critical systems, as BBS's 
  1249.       and the like. MuLink is a post-processing tool much like ATOM.
  1250.       More about this tool in its documentation.
  1251.     - Added a "MuGuardianOff" icon.
  1252.     - Updated the documentation.
  1253.     - Included E developer files, thanks to Daniel Kasmeroglu. 
  1254.  
  1255.  
  1256. Remaining problems:
  1257.     
  1258.     - The usual ppc.library problem. Not about to be fixed.
  1259.     - The library still refuses to work correctly on an Appollo 75Mhz
  1260.       060EC board, I don't know why. TTx setup of this board is now
  1261.       supported correctly, but this doesn't seem to help. Wierd.
  1262.  
  1263. Release 0.34
  1264. ------------
  1265.     Sigh, the 0.33 DMA logic was still buggy....
  1266.  
  1267.     - Fixed (another) bug in CachePostDMA(). The routine failed to
  1268.       check the CPU AttnFlags correctly and hence did not restore
  1269.       the cache mode to copyback. This could have been resulted in
  1270.       slowdown of your machine, and hands of several MuTools.
  1271.     - Removed all references to the 68040 and 68060.library. This
  1272.       will allow a possible future 680x0 library to use the 
  1273.       mmu.library to build its MMU tree instead of implementing this
  1274.       function a second time.
  1275.  
  1276. I M P O R T A N T:
  1277.  
  1278. THIS MEANS THAT ALL THE MUTOOLS *MUST* BE RUN  A F T E R  SetPatch.
  1279.  
  1280. The only exception to this rule is MuMove4K.
  1281.  
  1282. Please DO NOT run the MMURemapTest with the cybscsi or cybppc.device. Both
  1283. devices are not designed to allow memory remapping (not my fault). In worst
  1284. case, they will trash your hard disk!!!
  1285.  
  1286.  
  1287. Thanks goes to Ulrich Falke for helping me to find these bugs, and 
  1288. furthermore to Michaela Prüß for supplying the includes and protos for the 
  1289. vbcc compiler!
  1290.  
  1291. Release 0.33
  1292. ------------
  1293.     Outch, the 0.30 was buggy!
  1294.  
  1295.     - Fixed a bug in the GetPageProperties() routine for the 030 and
  1296.       020 support code. The cache control functions overwrote an 
  1297.       important CPU register and therefore crashed MuForce.
  1298.     - Fixed a bug in the DMA control logic. Outch! This really broke
  1299.       things!
  1300.     - Fixed a bug in the MMU table rounding logic. Fixed one overflow
  1301.       problem that makes the procedure hang on some machines. 
  1302.       Additionally, I forgot to merge adjacent property nodes here.
  1303.     - I must have been crazy to remove the PROTECT option in MuFastROM.
  1304.       Fixed!
  1305.     - MuFastZero OFF improved, and the FORCENATIVE flag was broken
  1306.       completely.
  1307.     - MuGuardianAngel showed a few bogus exceptions on startup, depends
  1308.       on the system configuration. TRSaferPatches caused this, fixed.
  1309.     - Added the FixCybAccess workaround. It fixes - or actually 
  1310.       works around - a really bad design fault of the cybscsi.device.
  1311.       More on this in its readme.
  1312.     - Changed the SegTracker output style of MuForce and MuGuardianAngel
  1313.       to the Enforcer style. This is most useful for tools interpreting
  1314.       these lines.
  1315.  
  1316. Thanks to all the nice folks that reported bugs, and sorry for the 
  1317. inconvenience about all the bugs.
  1318.  
  1319. This distribution contains again a "mmu.library_debug". In case you encounter
  1320. problems, please rename this to "mmu.library", install "Sushi" or "Sashimi"
  1321. with a *LARGE* I/O buffer and run the tests again. Alternatively, connect
  1322. a terminal to the serial port, 9600 baud, 8 bit, 1 stop bit, no parity.
  1323.  
  1324. Please collect the output and sent it to my email address. This will help 
  1325. me a lot debugging the library.
  1326.  
  1327. -----> When reporting bugs, PLEASE PLEASE let me know:
  1328.  
  1329. o) About which version of the library you're running. I might have sent
  1330. some of you an updated version.
  1331. o) About which processor your system is running on.
  1332. o) A MuScan output.
  1333. o) Which SCSI/IDE device you're using.
  1334.  
  1335. In case you see a crash:
  1336.  
  1337. o) Please write down the guru number.
  1338. o) Try to reproduce the crash, try to find out which program causes the
  1339. crash. This means that you should try to edit your startup sequence and to
  1340. remove patches from there until the crash disappears. You don't need to
  1341. strip the startup-sequence permanently, but just to let me know which
  1342. program causes the incompatibility.
  1343.  
  1344. Please understand that a "It won't work on my computer" doesn't help me 
  1345. much to fix the problem. Try to be as concrete as possible, this will 
  1346. increase the propability enourmously that bugs get fixed. (-;
  1347.  
  1348. A special note about the 0.3x releases:
  1349.  
  1350. I introduced a new guru, namely "AN_PostSetup 0x3e000015". In case you see
  1351. this specific guru, let me know which program caused this.
  1352.  
  1353.  
  1354. A special note about MuGuardianAngel:
  1355.  
  1356. This program is NOT compatible with PoolMem. Try not to install PoolMem on
  1357. top of this, this won't work. MuGuardianAngel will be smart enough to cancel
  1358. PoolMem if it is running, but it is not smart enough to prevent its 
  1359. installation.
  1360.  
  1361.  
  1362. A special note about "version" and related utilities aka "verscheck":
  1363.  
  1364. These tools OPEN the libraries in question. Hence, if you run "version"
  1365. on a - possibly existant - 68040old.library, it will open this library and
  1366. re-install a MMU table on top of the already loaded table. Either do
  1367. not try this or remove the 68040new.library and the 68040old.library from
  1368. your LIBS: drawer.
  1369.  
  1370.  
  1371. A special note about "MMUCacheTest": 
  1372.  
  1373. If this program hangs on your system, please report this. Furthermore, please
  1374. run it *AGAIN*, but this time with the "NOMMU" option on the command line
  1375. and *WITHOUT ANY* tools that require the mmu.library. It would be best to
  1376. boot without startup-sequence, run "SetPatch" by hand and then immediately
  1377. "MMUCacheTest DH0: nommu".
  1378.  
  1379.  
  1380. Release 0.30
  1381. ------------
  1382.     Ouh, just too many changes to mention:
  1383.  
  1384.     - Added tags to setup the MMU table layout, as the page size,
  1385.       the depth of the MMU tree.
  1386.     - Added functions to get and set some control values of the
  1387.        MMU contexts.
  1388.     - Added page access exception handler.
  1389.     - CachePre/PostDMA patches are now always installed since 68020
  1390.       and 68030 based systems need the logical -> physical trans-
  1391.       lation as well.
  1392.     - Reworked the mmu.library memory management.
  1393.     - Fixed several bugs in the MuForce program, did not handle ROM
  1394.       remapping correctly.
  1395.     - MuFastRom and MuFastZero reworked a bit. MuFastZero OFF did
  1396.       not work. Added more options for both tools.
  1397.     - Added a new debugging tool: MuGuardianAngel. Some sort of
  1398.       memory protection that keeps free memory from getting over-
  1399.       written by faulty programs.
  1400.     - Added more options to MuSetCacheMode.
  1401.     - MuMove4K moves now the lowest 32K (and is hence misnamed). This
  1402.       avoid trouble with large MMU table sizes on 68030/68020 based 
  1403.       systems and pre-allocates memory for an "oxypatcher" type tool.
  1404.     - Added MuLockLib tool, check the readme.
  1405.     - ....
  1406.  
  1407.  
  1408. Release 0.27
  1409. ------------
  1410.     - Fixed a bug in the task scheldurer.
  1411.     - Added a second explicit cache flush for ColdReboot()
  1412.     - Fixed a bug in the branch cache flush of the '060... Sorry!    
  1413.     - Tested the library for public remapped memory... Works!
  1414.     - Tested the library for private MMU trees... Works!
  1415.  
  1416.     - Since the 0.27 works now within its specifications, this will
  1417.       be the last 0.2x release. We're going to 0.30 now.
  1418.  
  1419. Release 0.26
  1420. ------------
  1421.  
  1422.     - Fixed a bug in the exception handling, forgot to restore a6.
  1423.     - Fixed the return value of RebuildTree(). It's now TRUE on
  1424.       success, not DOSTRUE.
  1425.     - Fixed a bug in the table builder, merged sub-tree were released
  1426.       incorrectly.
  1427.     - Added the WithoutMMU() LVO entry.
  1428.     - Removed the AllocLineMem() LVO, this one was useless.
  1429.  
  1430. Release 0.25
  1431. ------------
  1432.  
  1433.     - Debugged 060 exception handler again. Found only one bug, ROM
  1434.       emulation was broken.
  1435.     - Enhanced AbsExecBase accesses - does no longer block interrupts
  1436.       unnecessary.
  1437.     - Fixed parts of the exception handler to read the faulty instruction
  1438.       from the correct function code space.
  1439.     - Added a complicated test for the EC030 processor that should
  1440.       finally work.
  1441.     - Enabled the MMULib internal exception handler test.
  1442.     - Removed all accesses to the ppc.library and reserved entries.
  1443.       PPC.lib compatibility is no longer an issue for me. The MMU.lib
  1444.       is WarpOs-compatible, though, as long as the system isn't 
  1445.       infected by Ralph's "software".
  1446.     - Added a safety test in the MMUCacheTest program to avoid
  1447.       hangs.
  1448.  
  1449. Release 0.24
  1450. ------------
  1451.  
  1452.     - Fixed the 030/851 exception handler, especially the emulation
  1453.       of instruction access of a possibly invalidated zero page,
  1454.       now really, *BIG* thanks to Dave!
  1455.     - MuForce does no longer ignore a remapped ROM. (Oops!)
  1456.     - MuForce does no longer touch the mapping of the fspace
  1457.       unless told to do so.
  1458.     - Fixed the assembler includes and autodocs, thanks to Tilman!
  1459.     - The context management of the library does no longer
  1460.       reset the remap destination in case the memory remap flag
  1461.       is not included in the mask settings. (Oops!)
  1462.     - Fixed the MMU table builder for MMU tables using more than
  1463.       32K entries.
  1464.     - The startup code selects now a better page layout for 030/851
  1465.       processors.
  1466.     - MuForce tries now to re-use an already relocated vector base
  1467.       if possible.
  1468.     - Tiny speedup in the "InstallDescriptor" routine could speed up
  1469.       MMU table building. There's room for more speedups, though.
  1470.     - Added a "nommu" flag for the MMUCacheTest program to check    
  1471.       your HD without the mmu.library. If this flag is used, the
  1472.       program *MUST* be run without the mmu.library currently loaded.
  1473.  
  1474. Related fixes of COP (release 1.73, not included in this distribution):
  1475.     - Fixed emulation of instruction access to the zero-page.
  1476.     - Fixed the RestoreVBR option.
  1477.     - Fixed the MMU disable mechanism on startup.
  1478.  
  1479. Special thanks goes to Dave "Ragman" for finding a lot of bugs in the 0.21
  1480. release.
  1481.  
  1482. -----------------------------------------------------------------------------
  1483.  
  1484. Compatibility warnings and bad software:
  1485.  
  1486. - The MMU tables generated by the "CPU FastROM" command, an official CBM tool,
  1487. are simply wrong if run on a 030 processor. Chip memory is marked as
  1488. "cacheable", which is plain wrong. Already spoke to Michael Sinz who agrees
  1489. in that point. Don't use it, run "MuFastRom" instead.
  1490.  
  1491. - The MMU tables build by "SetCPU FastRom" are not very well suited for 
  1492. MuForce. The MMU library will replace the table layout by something more
  1493. adapted.
  1494.  
  1495. Since these programs may install a "bogus" exception vector, you shouldn't
  1496. run both programs with the "FastROM" option. If you absolutely want to do, 
  1497. run them *before* installing any MMU.lib related program and COP - remember, 
  1498. you have been warned. "MuFastROM" will do better anyhow.
  1499.  
  1500.  
  1501. - CMQ060.lha from the Aminet: This program uses the MOVE16 instruction to
  1502. "speed up" the copy mem routines of the Os. Besides that the speedup is
  1503. minimal, you should be informed that this instruction is not fully 
  1504. supported by the Amiga hardware. A MOVE16 into the chip memory could yield
  1505. to "strange and wonderful things", and may or may not work. Its burst
  1506. accesses simply don't fit into the DMA access mechanism of the Amiga 
  1507. custom chips. (Note that no other instruction will try burst accesses
  1508. into non-cacheable memory!)
  1509. Moreover, due to a firmware bug of the '040, a MOVE16 on a system using
  1510. virtual memory might be unreliable and cause undesired side effects. Do 
  1511. not run this program!
  1512.  
  1513. MOVE16 is one of the non-supported instructions in an Amiga system, others
  1514. are TAS, CAS and CAS2 (which are of little use in a single processor system).
  1515.  
  1516. For more detailed information of MOVE16, check either the enforcer.guide or
  1517. the motorola documentation, I'm not making this up, and this is not 
  1518. mmu.library related.
  1519.  
  1520. Known Bugs:
  1521. -----------
  1522.  
  1523.     The MMU table manager rebuilds currently the MMU tables for a
  1524.     complete memory block even if only a minor sub-block was changed.
  1525.     Therefore, it may take longer to build the MMU table than absolutely
  1526.     required. I decided not to change this behaiviour because it
  1527.     keeps the mmu tables clean and optimized and avoids fragmentation.
  1528.  
  1529.     The MMU library builds currently 68030 MMU tables with the
  1530.     REPAIRABLE flag set less efficient than it could. However, it 
  1531.     was felt that a consistent table layout is more helpful than the
  1532.     (minimal) speedup.
  1533.  
  1534.     The library does not yet contain a workaround for a 040 firmware
  1535.     bug: If an illegal, line A, chk or unimplemented floating point
  1536.     instruction is located at the last 16 bits of a page and the next
  1537.     page is not available, the 040 generates an access fault instead
  1538.     of the proper exception. The fault address is the address of the
  1539.     missing page, and the PC points to the instruction in the preceeding
  1540.     page. This doesn't matter too much currently, it might become
  1541.     relevant in a VM system.
  1542.  
  1543. These bugs will be fixed within the next releases of the library, including
  1544. all the other bugs you may find.
  1545.     
  1546. -----------------------------------------------------------------------------
  1547.  
  1548. Special thanks goes to:
  1549.  
  1550. -Ralph Babel for giving information about the CachePreDMA/CachePostDMA
  1551.  functions and for some internals allowing me to write the MuOmniSCSIPatch.
  1552. -Carsten Schlote for starting development of a mmu.library aware 68060.lib.
  1553. -Michael Sinz (a real BIG thank you!) for discussing a lot of details of
  1554.  CachePreDMA/CachePostDMA, for sending me the sources of these functions
  1555.  in his 68040, and especially - and that's really great - for making the
  1556.  Enforcer sources available and for allowing me to reuse the exception
  1557.  handler of the Enforcer. This will happen in one of the next releases.
  1558. -Bjoern Schmidt for allowing me to run some tests on his 060 and for
  1559.  keeping several afternoons free for me.
  1560. -All the testers for running tests and sending me detailed information about
  1561.  their systems.
  1562.  
  1563. Thank you to all of you, this project won't clearly possible without your
  1564. support!    
  1565.  
  1566. -----------------------------------------------------------------------------
  1567.  
  1568. What is this:
  1569. -------------
  1570.     The mmu.library provides functions for MMU related operations
  1571.     as write- or read-protecting certain areas of memory for a
  1572.     given set of tasks, or marking memory regions as "swapped"
  1573.     virtual memory support. It offers an abstraction level on top
  1574.     of the actual MMU and a unified interface for MMU purposes.
  1575.  
  1576.     The MMU lib does NOT implement virtual memory, that's the purpose
  1577.     of another library - the memory.library. There's no much reason why
  1578.     any application except the memory.library and probably some debugging
  1579.     tools should call this library directly. The memory.library functions
  1580.     on top of this library should suffer for "all day purposes".
  1581.  
  1582.     The goal of the mmu.library is to provide an "abstraction layer" on
  1583.     top of the hardware, to allow programs to make use of the memory
  1584.     management hardware of the more advanced members of the MC68K
  1585.     processor family. Programs using the functions of the mmu.library
  1586.     do not need to modify the MMU tables directly and hence will not
  1587.     conflict with each other. The mmu.library interface provides all
  1588.     necessary functions to do that. This will allow programs like
  1589.     Enforcer and VMM to cooperate nicely with each other, provided both
  1590.     use this library.
  1591.  
  1592.     
  1593. Known bugs and problems of this implementation:
  1594. -----------------------------------------------
  1595.  
  1596. Things that require testing:
  1597.  
  1598.     - TTx register parsing updated, again. Should work fine with all the
  1599.       printouts I've collected, but you may still want to test it.
  1600.     - 68851 code likely untested, but I'm getting better. 
  1601.       I NEED YOUR HELP!
  1602.     - GetPageProperties/SetPageProperties are likely tested by the
  1603.       MuGuardianAngel program.
  1604.     - Page access exception handlers only likely tested by 
  1605.       MuGuardianAngel.
  1606.  
  1607. Things not yet implemented:
  1608.  
  1609.     - Patches for ppc libraries due to missing support. The
  1610.       ppc.library will remain unsupported, if you're the owner of
  1611.       a PPC board, run WarpOs, which is compatible.
  1612.  
  1613. Things the current design does not allow:
  1614.  
  1615.     - The MAPP_USED and MAPP_MODIFIED flags are not kept consistent
  1616.       by the library except for MAPP_SINGLE pages. I consider this
  1617.       as a minor problem since single page mode is required for
  1618.       virtual memory anyways.
  1619.     - MMU tables using the function codes. The amiga design shouldn't
  1620.       allow this anyways, but I don't know whether there's a board
  1621.       that makes use of them. (Doesn't look like, though).
  1622.     - Boards with two different MMU's on board. I've heard some
  1623.       rumours that there are actually 68040 boards with an additional
  1624.       68851. 
  1625.  
  1626. Recommended reading:
  1627. --------------------
  1628.  
  1629. The following books are recommended reading:
  1630.  
  1631.  
  1632. Motorola 68030 Enhanced 32-bit Microprocessor User's Manual    
  1633.     MC68030UM/AD Rev.3
  1634.  
  1635. Motorola 68040 User's Manual                    
  1636.     M68040UM/AD Rev.1
  1637.  
  1638. Motorola 68060 User's Manual                    
  1639.     M68060UM/AD Rev.1
  1640.  
  1641. Motorola M68000 Family Programmer's Reference Manual        
  1642.     M68000PM/AD Rev.1
  1643.  
  1644. Amiga Hardware Reference Manual, 3rd ed.
  1645.     Addison-Wesley Publishing Company, Inc.
  1646.     ISBN 0-201-56776-8
  1647.  
  1648. Amiga ROM Kernal Reference Manual, 3rd ed., Volume "Libraries"
  1649.     Addison-Wesley Publising Company, Inc.
  1650.     ISBN 0-201-56774-1
  1651.  
  1652. The Amiga Guru Book, 2nd Ed.
  1653.     Ralph Babel, Taunusstein 1989,1993
  1654.  
  1655. Additional sources:
  1656.     The Amiga Developer CD V1.1 
  1657.  
  1658.     The Enforcer.guide.
  1659.  
  1660.     Michael Sinz's documentation in the AmigaMail, on the DevCD 1.1.
  1661.  
  1662. Final words:
  1663. ------------
  1664.  
  1665. The mmu.library and the memory.library will be my last project for the Amiga. 
  1666. It depends a bit on what happens with the Amiga in the next two years whether 
  1667. a PPC version of this library is required or not; hence, after all, this
  1668. can't be much more than a toy project that came several years too late.
  1669.  
  1670. So long,
  1671.     Thomas
  1672.